From: Juri Linkov Date: Tue, 12 Aug 2014 06:51:21 +0000 (+0300) Subject: * lisp/vc/vc-annotate.el (vc-annotate-background-mode): Use `with-demoted-errors' X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~23^2~3423^2~1190 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=e024465e2d69a05360b6e47be0f9c9d4b5a7deaa;p=emacs.git * lisp/vc/vc-annotate.el (vc-annotate-background-mode): Use `with-demoted-errors' instead of `ignore-errors'. Fixes: debbugs:18189 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 428ea4fffde..f91f3a0351e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2014-08-12 Juri Linkov + + * vc/vc-annotate.el (vc-annotate-background-mode): + Use `with-demoted-errors' instead of `ignore-errors'. (Bug#18189) + 2014-08-12 Stefan Monnier * files.el (out-of-memory-warning-percentage): Turn it off by default. diff --git a/lisp/vc/vc-annotate.el b/lisp/vc/vc-annotate.el index a9085bc901f..d0887fe3531 100644 --- a/lisp/vc/vc-annotate.el +++ b/lisp/vc/vc-annotate.el @@ -57,7 +57,7 @@ is applied to the background." :set (lambda (symbol value) (set-default symbol value) (when (boundp 'vc-annotate-color-map) - (ignore-errors + (with-demoted-errors ;; Update the value of the dependent variable. (custom-reevaluate-setting 'vc-annotate-color-map)))) :version "24.5"